summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-03-05 03:19:35 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:32 +0200
commit26ee6844c21fccca5741b0e777bf7d916a64a2dc (patch)
tree10a6665e5f51be3558835b8ddbd12d9f851b5da7
parentandroid: frontend: settings: Add graphics debugging. (diff)
downloadyuzu-26ee6844c21fccca5741b0e777bf7d916a64a2dc.tar
yuzu-26ee6844c21fccca5741b0e777bf7d916a64a2dc.tar.gz
yuzu-26ee6844c21fccca5741b0e777bf7d916a64a2dc.tar.bz2
yuzu-26ee6844c21fccca5741b0e777bf7d916a64a2dc.tar.lz
yuzu-26ee6844c21fccca5741b0e777bf7d916a64a2dc.tar.xz
yuzu-26ee6844c21fccca5741b0e777bf7d916a64a2dc.tar.zst
yuzu-26ee6844c21fccca5741b0e777bf7d916a64a2dc.zip
-rw-r--r--src/android/app/build.gradle8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/android/app/build.gradle b/src/android/app/build.gradle
index 74835113c..c9dc173ca 100644
--- a/src/android/app/build.gradle
+++ b/src/android/app/build.gradle
@@ -63,7 +63,6 @@ android {
// Attaches 'debug' suffix to version and package name, allowing installation alongside the release build.
relWithDebInfo {
initWith release
- applicationIdSuffix ".debug"
versionNameSuffix '-debug'
signingConfig signingConfigs.debug
minifyEnabled false
@@ -76,7 +75,6 @@ android {
// Attaches 'debug' suffix to version and package name, allowing installation alongside the release build.
debug {
// TODO If this is ever modified, change application_id in debug/strings.xml
- applicationIdSuffix ".debug"
versionNameSuffix '-debug'
debuggable true
jniDebuggable true
@@ -85,11 +83,7 @@ android {
flavorDimensions "version"
productFlavors {
- canary {
- dimension "version"
- applicationIdSuffix ".canary"
- }
- nightly {
+ mainline {
dimension "version"
}
}